home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / RGASM.RAR / ASMCODE.EXE / CHAPT7 / SETKBDV.ASM < prev    next >
Encoding:
Assembly Source File  |  1992-02-27  |  352 b   |  11 lines

  1.  
  2. .model tiny
  3. .code
  4.     mov    ax,0305h     ; AH - function 03, AL - subfunction 05
  5.     mov    bx,0            ; BH - delay (0 - 3 , 0 for smallest)
  6.                 ; BL - rate (0 - 1Fh , 0 for fastest)
  7.     int    16h             ; BIOS interrupt - keyboard service
  8.     mov    ax,4C00h        ; 4C - terminate process, 00 - return code
  9.     int    21h             ; DOS service call
  10.     end
  11.